翻訳と辞書
Words near each other
・ Reena Pärnat
・ Reena Raggi
・ Reena Roy
・ Reena Saini Kallat
・ Reenard
・ Reenat Fauzia
・ Reencarnación
・ Reencontro com Sambalanço Trio
・ Reencuentro
・ Reencuentro con la gloria
・ Reencuentros
・ Reender Kranenborg
・ Reengineering
・ Reengus
・ Reenie Mansata
Reentrancy (computing)
・ Reentrant
・ Reentrant mutex
・ Reentrant superconductivity
・ Reentrant tuning
・ Reentry (disambiguation)
・ Reentry (neural circuitry)
・ Reentry Breakup Recorder
・ Reentry capsule
・ Reenu Mathews
・ Reenu-Rew
・ Reep
・ Reep Daggle
・ REEP1
・ REEP2


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Reentrancy (computing) : ウィキペディア英語版
Reentrancy (computing)

In computing, a computer program or subroutine is called reentrant if it can be interrupted in the middle of its execution and then safely called again ("re-entered") before its previous invocations complete execution. The interruption could be caused by an internal action such as a jump or call, or by an external action such as a hardware interrupt or signal. Once the reentered invocation completes, the previous invocations will resume correct execution.
This definition originates from single-threaded programming environments where the flow of control could be interrupted by a hardware interrupt and transferred to an interrupt service routine (ISR). Any subroutine used by the ISR that could potentially have been executing when the interrupt was triggered should be reentrant. Often, subroutines accessible via the operating system kernel are not reentrant. Hence, interrupt service routines are limited in the actions they can perform; for instance, they are usually restricted from accessing the file system and sometimes even from allocating memory.
A subroutine that is directly or indirectly recursive should be reentrant. This policy is partially enforced by structured programming languages. However a subroutine can fail to be reentrant if it relies on a global variable to remain unchanged but that variable is modified when the subroutine is recursively invoked.
This definition of reentrancy differs from that of thread-safety in multi-threaded environments. A reentrant subroutine can achieve thread-safety, but being reentrant alone might not be sufficient to be thread-safe in all situations. Conversely, thread-safe code does not necessarily have to be reentrant (see below for examples).
Other terms used for reentrant programs include "pure procedure" or "sharable code".
==Example==
This is an example of a swap() function that fails to be reentrant (as well as failing to be thread-safe). As such, it should not have been used in the interrupt service routine isr():

int t;
void swap(int
*x, int
*y)
void isr()

swap() could be made thread-safe by making t thread-local. It still fails to be reentrant, and this will continue to cause problems if isr() is called in the same context as a thread already executing swap().
The following (somewhat contrived) modification of the swap function, which is careful to leave the global data in a consistent state at the time it exits, is perfectly reentrant ; however, it is not thread-safe since it does not ensure the global data is in a consistent state during execution:

int t;
void swap(int
*x, int
*y)
void isr()


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Reentrancy (computing)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.